net/http.response.status (field)

7 uses

	net/http (current package)
		server.go#L457: 	status        int   // status code passed to WriteHeader
		server.go#L1184: 	w.status = code
		server.go#L1327: 	if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
		server.go#L1344: 	if w.wants10KeepAlive && (isHEAD || hasCL || !bodyAllowedForStatus(w.status)) {
		server.go#L1446: 	code := w.status
		server.go#L1524: 		!isProtocolSwitchResponse(w.status, header)
		server.go#L1583: 	return bodyAllowedForStatus(w.status)